home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / PowerLisp 2.01 FAT Folder.sit / PowerLisp 2.01 FAT Folder / PowerLisp 2.01 ƒ / Library / compile-68k-libs.lisp < prev    next >
Text File  |  1996-05-22  |  2KB  |  120 lines

  1. ;;;
  2. ;;;        PowerLisp 2.0
  3. ;;;        Copyright ゥ 1996 Roger Corman.  All rights reserved.
  4. ;;;        68k PowerLisp library compiler script
  5. ;;;
  6. ;;
  7. ;;    This file compiles all the standard libraries
  8. ;;
  9.  
  10. ;; if assembler not loaded, load the correct one
  11. (if (not (member :assembler *modules*))
  12.     (if cl::%powerpc-native
  13.         (load ":library:assembler_ppc.lisp")
  14.         (load ":library:assembler_68k.lisp")))
  15.  
  16. ;; if compiler not loaded, load the correct one
  17. (if (not (member :compiler *modules*))
  18.     (if cl::%powerpc-native
  19.         (load ":library:compiler_ppc.lisp")
  20.         (load ":library:compiler_68k.lisp")))
  21.  
  22. (compile-file 
  23.     ":library:assembler_68k.lisp" 
  24.     :output-file ":library:assembler.fasl"
  25.     :print t)
  26. (load ":library:assembler.fasl")
  27.  
  28. (compile-file 
  29.     ":library:compiler_68k.lisp" 
  30.     :output-file ":library:compiler.fasl"
  31.     :print t)
  32. (load ":library:compiler.fasl")
  33.  
  34. (compile-file 
  35.     ":library:cl.lisp" 
  36.     :output-file ":library:cl.fasl"
  37.     :print t)
  38. (load ":library:cl.fasl")
  39.  
  40. (compile-file 
  41.     ":library:backquote.lisp" 
  42.     :output-file ":library:backquote.fasl"
  43.     :print t)
  44. (load ":library:backquote.fasl")
  45.  
  46. (compile-file 
  47.     ":library:setf.lisp" 
  48.     :output-file ":library:setf.fasl"
  49.     :print t)
  50.  
  51. (compile-file 
  52.     ":library:defpackage.lisp" 
  53.     :output-file ":library:defpackage.fasl"
  54.     :print t)
  55.  
  56. (compile-file 
  57.     ":library:structures.lisp" 
  58.     :output-file ":library:structures.fasl"
  59.     :print t)
  60.  
  61. (compile-file 
  62.     ":library:format.lisp" 
  63.     :output-file ":library:format.fasl"
  64.     :print t)
  65.  
  66. (load ":library:random.lisp")
  67. (compile-file 
  68.     ":library:random.lisp" 
  69.     :output-file ":library:random.fasl"
  70.     :print t)
  71.  
  72. (compile-file 
  73.     ":library:describe.lisp" 
  74.     :output-file ":library:describe.fasl"
  75.     :print t)
  76.  
  77. (compile-file 
  78.     ":library:documentation.lisp" 
  79.     :output-file ":library:documentation.fasl"
  80.     :print t)
  81.  
  82. (load ":library:clos.lisp")
  83. (compile-file 
  84.     ":library:clos.lisp" 
  85.     :output-file ":library:clos.fasl"
  86.     :print t)
  87.  
  88. (load ":library:loop.lisp")
  89. (compile-file 
  90.     ":library:loop.lisp" 
  91.     :output-file ":library:loop.fasl"
  92.     :print t)
  93.  
  94. (compile-file 
  95.     ":library:graphics.lisp" 
  96.     :output-file ":library:graphics.fasl"
  97.     :print t)
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.